Represents a view having a single element calculated by aggregating a source view.

Namespace:  C1.LiveLinq.LiveViews
Assembly:  C1.Silverlight.LiveLinq (in C1.Silverlight.LiveLinq.dll)

Syntax

C#
public class AggregationView<TSource, TResult> : View<TResult>, 
	INotifyPropertyChanged, IAggregationView
Visual Basic
Public Class AggregationView(Of TSource, TResult) _
	Inherits View(Of TResult) _
	Implements INotifyPropertyChanged, IAggregationView

Type Parameters

TSource
The type of the elements of the source view.
TResult
The type of the single element of the aggregation view.

Inheritance Hierarchy

System..::..Object
  C1.LiveLinq.LiveViews..::..View
    C1.LiveLinq.LiveViews..::..View<(Of <(<'TResult>)>)>
      C1.LiveLinq.LiveViews..::..AggregationView<(Of <(<'TSource, TResult>)>)>

See Also